home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
MPW_TOOL
/
TOOLS
/
TOOLS_WI
/
ICON_8
/
TESTS
/
OVER.ICN
< prev
next >
Wrap
Text File
|
1990-03-02
|
377b
|
23 lines
procedure main()
if not(&features == "large integers") then
stop("large integers not supported")
i := 100000 + 10000
write(i)
i +:= 2 ^ 30
write(i)
i +:= i
write(i)
i := 100000 * 10000
write(i)
i +:= 2 ^ 30
write(i)
i *:= i
write(i)
i := -100000 - 10000
write(i)
i +:= -(2 ^ 30)
write(i)
i -:= 2 ^ 30
write(i)
end